home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 952 b | 40 lines | [TEXT/CWIE] |
- // UCustomViewerDocument.h
- // Copyright © 1996 by Apple Computer, Inc. All rights reserved.
-
- #ifndef __UCustomViewerDocument__
- #define __UCustomViewerDocument__
-
- #ifndef __UDOCUMENT__
- #include "UDocument.h"
- #endif
-
- #ifndef __UQD3DViewer__
- #include "UQD3DViewer.h"
- #endif
-
- class TCustomViewerWindow;
- //----------------------------------------------------------------------------------------
- // TCustomViewerDocument
- //----------------------------------------------------------------------------------------
-
- class TCustomViewerDocument: public TDocument
- {
- MA_DECLARE_CLASS;
-
- public:
- TCustomViewerDocument();
- // Constructor
- virtual ~TCustomViewerDocument();
- // Destructor
- virtual void ICustomViewerDocument();
- virtual void DoMakeViews(Boolean forPrinting); // Override
- virtual void SetViewerBackground();
- virtual void SetViewerFlags();
-
- private:
- TQD3DViewerView* fQD3DView1;
- TCustomViewerWindow* fCustomViewerWindow;
- };
-
- #endif
-